home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Financial / Stopwatch2.3 / Source / ColCell.h < prev    next >
Text File  |  1995-06-12  |  471b  |  27 lines

  1. /*
  2.  * Implements a cell that displays its data in 3 columns.
  3.  *
  4.  * For legal stuff see the file COPYRIGHT
  5.  */
  6. #import <appkit/appkit.h>
  7.  
  8. #if NOT_YET
  9. typedef struct {
  10.   int    offset;            /* column position */
  11.   char    *method;        /* method name to invoke */
  12. } ColDesc;
  13. #endif
  14.  
  15. @interface ColCell : NXBrowserCell
  16. {
  17.   id    data;
  18. }
  19.  
  20. - drawInside:(const NXRect *)cellFrame inView:controlView;
  21. - setFont:fontObj;
  22. - copyFromZone:(NXZone *)zone;
  23. - (void)setCellData:obj;
  24. - cellData;
  25.  
  26. @end
  27.